home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / defcon-minus.swf / scripts / frame_1 / DoAction_4.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  416 b   |  16 lines

  1. stop();
  2. orgWidth = preloader.loadBar._height;
  3. this.onEnterFrame = function()
  4. {
  5.    trace(loadedbytes + "," + totalbytes);
  6.    loadedbytes = getBytesLoaded();
  7.    totalbytes = getBytesTotal();
  8.    percentbytes = loadedbytes / (totalbytes / 100);
  9.    preloader.loadBar._height = orgWidth / 100 * percentbytes;
  10.    if(loadedbytes == totalbytes)
  11.    {
  12.       _root.play();
  13.       delete this.onEnterFrame;
  14.    }
  15. };
  16.